github.com/refraction-networking/utls.certificateMsgTLS13.certificate (field)

13 uses

	github.com/refraction-networking/utls (current package)
		handshake_client_tls13.go#L819: 	if len(certMsg.certificate.Certificate) == 0 {
		handshake_client_tls13.go#L831: 	c.scts = certMsg.certificate.SignedCertificateTimestamps
		handshake_client_tls13.go#L832: 	c.ocspResponse = certMsg.certificate.OCSPStaple
		handshake_client_tls13.go#L834: 	if err := c.verifyServerCertificate(certMsg.certificate.Certificate); err != nil {
		handshake_client_tls13.go#L954: 	certMsg.certificate = *cert
		handshake_messages.go#L1501: 	certificate  Certificate
		handshake_messages.go#L1512: 		certificate := m.certificate
		handshake_messages.go#L1569: 		!unmarshalCertificate(&s, &m.certificate) ||
		handshake_messages.go#L1574: 	m.scts = m.certificate.SignedCertificateTimestamps != nil
		handshake_messages.go#L1575: 	m.ocspStapling = m.certificate.OCSPStaple != nil
		handshake_server_tls13.go#L848: 	certMsg.certificate = *hs.cert
		handshake_server_tls13.go#L1065: 	if err := c.processCertsFromClient(certMsg.certificate); err != nil {
		handshake_server_tls13.go#L1076: 	if len(certMsg.certificate.Certificate) != 0 {